// phpFileExists(theFilePath)
//
// Returns TRUE if the file exists.
//
Let (
	[
		$theFilePath = theFilePath ;

		phpCode = "error_reporting(0); //(E_ALL & ~E_NOTICE);¶
		¶
		echo file_exists(fm_evaluate('$theFilePath'));¶
	  "
	] ;
	PHP_Execute(phpCode)
)